home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Days Till Date.sd < prev    next >
INI File  |  2004-06-28  |  849b  |  42 lines

  1. [SUBJECT]
  2. Description=Displays how many days until a given date
  3. ImageIndex=-1
  4. Folder=Mathematics
  5.  
  6. [BODY_TEXT]
  7. ;<script language="JavaScript">
  8. ;<!-- Begin
  9. ;var date = new Date("`date`");
  10. ;var description = "`description`";
  11. ;var now = new Date();
  12. ;var diff = date.getTime() - now.getTime();
  13. ;var days = Math.floor(diff / (1000 * 60 * 60 * 24));
  14. ;document.write("<center><h3>");
  15. ;if (days > 1) {
  16. ;document.write(days+1 + " days until " + description);
  17. ;}
  18. ;else if (days == 1) {
  19. ;document.write("Only two days until " + description);
  20. ;}
  21. ;else if (days == 0) {
  22. ;document.write("Tomorrow is " + description);
  23. ;}
  24. ;else {
  25. ;document.write("It's" + description + "!");
  26. ;}
  27. ;document.write("</h3></center>");
  28. ;// End -->
  29. ;</script>
  30. ;
  31.  
  32.  
  33. [`date`]
  34. Kind=S
  35. Value=January 1, 2003
  36.  
  37. [`description`]
  38. Kind=S
  39. Value=the year 2003
  40.  
  41.  
  42.